Tổng quan Container_(kiểu_dữ_liệu_trừu_tượng)

Có thể phân loại container dựa theo ba loại thuộc tính sau:

  • truy cập (access), là cách truy cập các đối tượng của container. In the case of arrays, access is done with the array index. In the case of stacks, access is done according to the LIFO (last in, first out) order and in the case of queues it is done according to the FIFO (first in, first out) order;
  • lưu trữ (storage), là cách để lưu trữ các đối tượng của container;
  • duyệt (traversal), là cách để duyệt qua các đối tượng của container.